home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / fsync.c,v < prev    next >
Text File  |  1991-12-10  |  2KB  |  134 lines

  1. head     1.3;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.3.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.3
  10. date     88.07.25.09.15.40;  author ouster;  state Exp;
  11. branches 1.3.1.1;
  12. next     1.2;
  13.  
  14. 1.2
  15. date     88.06.21.17.25.01;  author ouster;  state Exp;
  16. branches ;
  17. next     1.1;
  18.  
  19. 1.1
  20. date     88.06.19.14.31.18;  author ouster;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24. 1.3.1.1
  25. date     91.12.10.15.47.04;  author kupfer;  state Exp;
  26. branches ;
  27. next     ;
  28.  
  29.  
  30. desc
  31. @@
  32.  
  33.  
  34. 1.3
  35. log
  36. @Was null procedure before, now it's complete (but unfortunately
  37. Fs_WriteBackID doesn't seem to work).
  38. @
  39. text
  40. @/* 
  41.  * fsync.c --
  42.  *
  43.  *    Procedure to map from Unix fsync system call to Sprite system call.
  44.  *
  45.  * Copyright 1986 Regents of the University of California
  46.  * All rights reserved.
  47.  */
  48.  
  49. #ifndef lint
  50. static char rcsid[] = "$Header: fsync.c,v 1.2 88/06/21 17:25:01 ouster Exp $ SPRITE (Berkeley)";
  51. #endif not lint
  52.  
  53. #include "sprite.h"
  54.  
  55. #include "compatInt.h"
  56. #include <errno.h>
  57.  
  58.  
  59. /*
  60.  *----------------------------------------------------------------------
  61.  *
  62.  * fsync --
  63.  *
  64.  *    Procedure to map from Unix fsync system call to Sprite 
  65.  *    system call.
  66.  *
  67.  * Results:
  68.  *    UNIX_SUCCESS is returned.
  69.  *
  70.  * Side effects:
  71.  *    None.
  72.  *
  73.  *----------------------------------------------------------------------
  74.  */
  75.  
  76. int
  77. fsync(fd)
  78.     int fd;            /* Identifier for stream to flush to disk. */
  79. {
  80.     ReturnStatus status;
  81.  
  82.     status = Fs_WriteBackID(fd, -1, -1, 1);
  83.     if (status != SUCCESS) {
  84.     errno = Compat_MapCode(status);
  85.     return(UNIX_ERROR);
  86.     } else {
  87.     return(UNIX_SUCCESS);
  88.     }
  89. }
  90. @
  91.  
  92.  
  93. 1.3.1.1
  94. log
  95. @Initial branch for Sprite server.
  96. @
  97. text
  98. @d11 1
  99. a11 1
  100. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/fsync.c,v 1.3 88/07/25 09:15:40 ouster Exp $ SPRITE (Berkeley)";
  101. @
  102.  
  103.  
  104. 1.2
  105. log
  106. @Various changes to make code compile under new library.
  107. @
  108. text
  109. @d11 1
  110. a11 1
  111. static char rcsid[] = "$Header: fsync.c,v 1.1 88/06/19 14:31:18 ouster Exp $ SPRITE (Berkeley)";
  112. d38 2
  113. a39 1
  114. fsync()
  115. d41 9
  116. a49 1
  117.     return(UNIX_SUCCESS);
  118. @
  119.  
  120.  
  121. 1.1
  122. log
  123. @Initial revision
  124. @
  125. text
  126. @d11 1
  127. a11 1
  128. static char rcsid[] = "$Header: sigsetmask.c,v 1.1 86/04/17 15:21:06 douglis Exp $ SPRITE (Berkeley)";
  129. d16 2
  130. a17 2
  131. #include "compat.h"
  132. #include </usr/include/errno.h>
  133. @
  134.